adTempus API
ArcanaDevelopment.adTempus.Client Namespace / DataContext Class / GetScriptLibraries Method / GetScriptLibraries(String[],ObjectFetchOptions,Int32,Boolean) Method
The language(s) to select for. Set to a null reference (Nothing in Visual Basic) to get all Script Libraries or specify any of the ArcanaDevelopment.adTempus.Shared.ScriptLanguages values.
Options that control the fetch operation
The maximum number of records to retrieve in one call. See Remarks.
Indicates whether to fetch the first page or continue paging. See Remarks.


In This Topic
    GetScriptLibraries(String[],ObjectFetchOptions,Int32,Boolean) Method
    In This Topic
    Gets Script Libraries from the server.
    Syntax
    'Declaration
     
    
    Public Overloads Function GetScriptLibraries( _
       ByVal languages() As String, _
       ByVal fetchOptions As ObjectFetchOptions, _
       ByVal pageSize As Integer, _
       ByRef restartPaging As Boolean _
    ) As ScriptLibraryCollection

    Parameters

    languages
    The language(s) to select for. Set to a null reference (Nothing in Visual Basic) to get all Script Libraries or specify any of the ArcanaDevelopment.adTempus.Shared.ScriptLanguages values.
    fetchOptions
    Options that control the fetch operation
    pageSize
    The maximum number of records to retrieve in one call. See Remarks.
    restartPaging
    Indicates whether to fetch the first page or continue paging. See Remarks.
    Remarks

    Paging

    This method supports paged retrieval for scenarios where the amount of data returned by a fetch of all objects is not feasible for performance reasons.

    To begin a paged fetch, set the pageSize to the desired number of records per page, and set restartPaging to true to start the fetch from the first record. On return, restartPaging will be set to false if there are more records to return. Continue to call the method with restartPaging set to false until it is true on return. At this point, all available records have been returned.

    Note that there is no way to specify the page at which the retrieval should begin; fetching is sequential only.

    See Also